*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: .16rem;
    /* font-family: Source Han Sans CN, Source Han Sans CN; */
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* For some Androids */
        
}
html{
    font-size: 100px;
    overflow-x: hidden;
    background: #F2F2F2;
}

a{
    text-decoration: none;
    color: #000;
}
ul{
    list-style: none;
}
input{
    outline: 0;
    background:#fff;
}
img{
    object-fit: cover;
    cursor:pointer;
    display: block;
}
/*单词自动换行*/
/* word-break:break-all;
word-wrap:break-word; */
/*文字描边*/
 /* 设置描边宽度及颜色 默认为字体内外描边
  text-stroke: 2px #2173FF;
 */
  /* 兼容Webkit(Chrome/Safari)内核浏览器的写法
  -webkit-text-stroke: 2px #2173FF;
  color: #fff;
 */

.swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/*多行溢出*/
.line1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.line2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
}
.line4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 4;
}
.line5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 5;
}
/* 水波纹效果 */
.btn-ripple {
  vertical-align: bottom;
}
.btn-ripple:not(:disabled):hover {
  opacity: 1;
  position: relative;
  overflow: hidden;
}
.btn-ripple:not(:disabled):hover::before {
  animation: ani_ripple 0.75s;
  z-index: 1;
  content: "";
  position: absolute;
  display: block;
  transition: all 0.6s;
  width: 100%;
  height: 0;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  padding-top: 100%;
  transform: translateX(-50%) translateY(-50%);
}
@keyframes ani_ripple {
    0% {
      background: rgba(0, 0, 0, 0.25);
      transform: translateX(-50%) translateY(-50%) scale(0);
    }
  
    to {
      background: transparent;
      transform: translateX(-50%) translateY(-50%) scale(1);
    }
  }
.common_banner img{
  width: 100%;
}
.common_position{
  background-color: #F8F8F8;
}
.common_center{
  display: flex;
  justify-content: space-between;
  width: 14rem;
  margin: 0 auto;
  align-items: center;
}
.common_a_tit{
  height: 0.81rem;
  width: 1.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #504D4D;
  font-size: 0.18rem;
  border-right: 0.01rem solid #787676;
  transition: all .25s;
}

.common_a_tit:hover{
  background: #053F94;
  color: #fff;
}
.common_abox{
  display: flex;
  align-items: center;
}
.common_bread_homer{
  width: 0.18rem;
  height: 0.2rem;
  margin-right: 0.05rem;
}
.common_bread_homer img{
  width: 100%;
  height: 100%;
}

.common_bread{
  display: flex;
  align-items: center;
}
.common_bread_homer{
  width: 0.18rem;
  height: 0.2rem;
}
.common_bread_after{
  display: flex;
  align-items: center;
  color: #504D4D;
  font-size: 0.14rem;
}

.common_bread_after::after{
  content: '>';
  display: block;
  margin: 0 0.05rem;
}


/* hover-图片放大1.1 */
.scale-box {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.scale-box .scale-img {
  width: 100%;
  height: 100%;
  transition: 0.3s linear;
  cursor: pointer;
  object-fit: cover;
}
.scale-box:hover .scale-img {
  transform: scale(1.1);
}

/* 常用盒子阴影 */
.shadow_box {
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1)
}





/* 新力五金项目css，不需要可以删除 */
/* 公共banner */
.common_banner {
  position: relative;
  width: 100%;
  height: 2.6rem;
  margin-top: 1.2rem;
}
.common_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.common_banner .txts {
  position: absolute;
  left: 3.46rem;
  top: 1rem;
}
.common_banner .txts .cn {
  font-size: 0.46rem;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: bold;
  color: #F9F9F9;
  text-shadow: 0px 0px 0px rgba(0,0,0,0.16);
}
.common_banner .txts .en {
  font-size: 0.24rem;
  font-family: SourceHanSansSC-Bold, SourceHanSansSC-Bold;
  font-weight: normal;
  color: #FFFFFF;
}

/* 公共面包屑 */
.common_bread {
  width: 100%;
  margin-top: 1.2rem;
}
.common_bread .center {
  width: 14rem;
  /* height: 1rem; */
  margin: 0 auto;
  padding: 0.2rem 0;
  display: flex;
  align-items: center;
}
/* 面包屑 */
.common_bread .crumbs {
  display: flex;
  align-items: center;
}
.common_bread .crumbs .icon {
  height: 0.16rem;
  margin-right: 0.12rem;
  object-fit: contain;
}
.common_bread .crumbs .roads {
  font-size: 0.14rem;
  color: #999999;
  white-space: nowrap;
}
.common_bread .crumbs .roads a {
  font-size: 0.14rem;
  color: #999999;
  white-space: nowrap;
}
.common_bread .crumbs .roads span {
  font-size: 0.14rem;
  color: #1C1C1C;
  white-space: nowrap;
}


/* 公共居中box */
.common_page {
  width: 100%;
}
.common_page .center {
  position: relative;
  width: 14rem;
  margin: 0 auto;
  padding: 0 0 0.35rem;
}


/* 公共分页 */
.page_box {
  width: fit-content;
  margin: 0 auto;
  margin-top: 0.36rem;
  display: flex;
  align-items: center;
}
.page_box .pages {
  display: flex;
  align-items: center;
}
.page_box .pages .item {
  display: block;
  width: 0.32rem;
  height: 0.32rem;
  margin-right: 0.1rem;
  border: 0.01rem solid #EEEEEE;
  background-color: #fff;
  border-radius: 0.04rem;
  text-align: center;
  line-height: 0.32rem;
  font-size: 0.14rem;
  font-family: PingFang-SC-Medium, PingFang-SC-Medium;
  font-weight: normal;
  color: #7A7A7A;
  cursor: pointer;
}
.page_box .pages .item:hover {
  background: #080808;
}
.page_box .pages .active {
  background: #080808;
}
.page_box .btn {
  display: block;
  width: 0.7rem;
  height: 0.32rem;
  margin-right: 0.1rem;
  border: 0.01rem solid #EEEEEE;
  background-color: #fff;
  border-radius: 0.04rem;
  text-align: center;
  line-height: 0.32rem;
  font-size: 0.14rem;
  font-family: PingFang-SC-Medium, PingFang-SC-Medium;
  font-weight: normal;
  color: #7A7A7A;
  cursor: pointer;
}
.page_box .btn:hover {
  background: #080808;
}
.page_box .home {
  width: 0.4rem;
}
.page_box .end {
  width: 0.4rem;
}



/* 左侧公共导航 */
.common-left {
  width: 2.2rem;
  height: 100%;
  min-height: 3.72rem;
  margin-right: 0.24rem;
  padding: 0.13rem 0;
  background: #FFFFFF;
}
.common-left .title {
  margin-left: 0.22rem;
  font-size: 0.16rem;
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: bold;
  color: #333333;
}
.common-left .navs {
  margin-top: 0.13rem;
}
.common-left .navs .nav {
  position: relative;
  display: block;
  width: 100%;
  height: 0.4rem;
  padding-left: 0.46rem;
  font-size: 0.14rem;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  color: #666666;
  line-height: 0.4rem;
}
.common-left .navs .nav:hover {
  background: rgba(229, 11, 24, 0.1);
  color: #E50B18;
}
.common-left .navs .active {
  background: rgba(229, 11, 24, 0.1);
  color: #E50B18;
}
.common-left .navs .active::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0.04rem;
  height: 0.4rem;
  background: #E50B18;
}
/* 右侧内容区域 */
.common-right {
  flex: 1;
}

